home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Freeware
/
ReNamer 5.40
/
ReNamer.exe
/
{app}
/
Scripts
/
Import DLL functions.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
2007-02-13
|
234b
|
10 lines
function GetTickCount: Longint;
external 'GetTickCount@kernel32.dll stdcall';
procedure Sleep(Milliseconds: Cardinal);
external 'Sleep@kernel32.dll stdcall';
begin
FileName := IntToStr(GetTickCount);
Sleep(10);
end.